From: Paul Eggert Date: Tue, 31 May 2011 05:47:57 +0000 (-0700) Subject: Fix ChangeLog entry order. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~3565^2~3 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=1483cefd733b742d6d146dbdbcd73cc50c952cc7;p=emacs.git Fix ChangeLog entry order. --- diff --git a/src/ChangeLog b/src/ChangeLog index 32401825261..f8879d9d7e4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -6,6 +6,16 @@ * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c: All callers changed. (Bug#8762) + * gnutls.c: Use Emacs's memory allocators. + Without this change, the gnutls library would invoke malloc etc. + directly, which causes problems on non-SYNC_INPUT hosts, and which + runs afoul of improving memory_full behavior. (Bug#8761) + (fn_gnutls_global_set_mem_functions): New macro or function pointer. + (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc, + xfree instead of the default malloc, realloc, free. + (Fgnutls_boot): No need to check for memory allocation failure, + since xmalloc does that for us. + Use 'inline', not 'INLINE'. * alloc.c, fontset.c (INLINE): Remove. @@ -38,18 +48,6 @@ * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751) (CCL_CODE_MIN): New macro. -2011-05-30 Paul Eggert - - * gnutls.c: Use Emacs's memory allocators. - Without this change, the gnutls library would invoke malloc etc. - directly, which causes problems on non-SYNC_INPUT hosts, and which - runs afoul of improving memory_full behavior. (Bug#8761) - (fn_gnutls_global_set_mem_functions): New macro or function pointer. - (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc, - xfree instead of the default malloc, realloc, free. - (Fgnutls_boot): No need to check for memory allocation failure, - since xmalloc does that for us. - 2011-05-30 Paul Eggert * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.